ICommonUI.MessageBox method

Namespace: NextDesign.Desktop

Description

Display the Obsolete message.

argument

Name Type Description
message string message
null cannot be specified.
caption string Caption (If omitted, use the application name)

Return value

  • void

Exception

Name Exception Class Description
Invalid argument ExtensionArgumentException When null is specified in message

Annotation

About API specification change and migration method in Ver.1.1

This method will be removed in a future version. Please use ShowMessageBox () in Ver.1.1 or later. When using this API, it is necessary to change the relevant part in the extension along with the version upgrade to Ver.1.1 or later.

Change it by referring to the following example.

Change before

UI.MessageBox ("any message ...");

After change

UI.ShowMessageBox ("any message ...");